home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00088_DirectionEightSpriteMaze.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  6.0 KB  |  205 lines

  1. --
  2. -- DirectionSprite
  3. --
  4.  
  5. property ancestor
  6.  
  7. -- constants:
  8. property dragTopSpriteColor  -- the spriteColor of the dragging sprite - for setup
  9. property dragUnderSpriteColor
  10.  
  11. property dragTopSprite  -- the spriteNumber of the dragging sprite
  12. property dragUnderSprite  -- the sprite that drags under the cursor to find intersecting sprites.
  13. property hiliteSprite  -- the sprite that will do the rollover hiliting
  14.  
  15. property hiliteList  -- a list of hilitable sprites.  They hilite when the dragger is over them.
  16. property void  -- never initialize this.
  17. property baseCastlib
  18. property showDirectionFlag  -- allow visual changes of direction if true
  19.  
  20.  
  21. on new me
  22.   -- set constants:
  23.   set dragTopSpriteColor = 5  -- red
  24.   set dragUnderSpriteColor = 4  -- pink
  25.   
  26.   -- initialize the ancestor:
  27.   set ancestor = new (script "SinglePointPusher")
  28.   
  29.   -- do other initializations:
  30.   setUp (me)
  31.   set showDirectionFlag = TRUE
  32.   
  33.   set hiliteList = []
  34.   return me
  35. end
  36.  
  37.  
  38. on destruct me
  39.   if objectP (ancestor) then destruct (ancestor)
  40.   set ancestor = 0
  41. end
  42.  
  43.  
  44.  
  45. -- don't allow a visual change of direction:
  46.  
  47. on showDirectionOff me
  48.   set showDirectionFlag = FALSe
  49. end
  50.  
  51.  
  52. on move me, spr, direction
  53.   
  54.   if voidP (baseCastLib) then set baseCastLib = the name of castLib the castLibNum of sprite spr
  55.   
  56.   puppetSprite spr, TRUE
  57.   
  58.   if showDirectionFlag then
  59.     case (direction) of 
  60.       #up : set the castLibNum of sprite spr to the number of castLib baseCastLib
  61.       #down:  set the castLibNum of sprite spr to the number of castLib (baseCastLib & "2")
  62.       #right: set the castLibNum of sprite spr to the number of castLib (baseCastLib & "3")
  63.       #left:  set the castLibNum of sprite spr to the number of castLib (baseCastLib & "4")
  64.       #upleft: set the castLibNum of sprite spr to the number of castLib (baseCastLib & "5")
  65.       #upright: set the castLibNum of sprite spr to the number of castLib (baseCastLib & "6")
  66.       #downleft: set the castLibNum of sprite spr to the number of castLib (baseCastLib & "7")
  67.       #downright: set the castLibNum of sprite spr to the number of castLib (baseCastLib & "8")
  68.       otherwise return
  69.     end case
  70.   end if
  71.   
  72.   if dragTopSprite then 
  73.     set the memberNum of sprite dragTopSprite to the memberNum of sprite spr
  74.     set the castLibNum of sprite dragTopSprite to the castLibNum of sprite spr
  75.     set the loc of sprite dragTopSprite to the loc of sprite spr
  76.     updateStage
  77.   end if
  78.   
  79.   moveOffScreen (me, spr)
  80.   
  81.   if dragUnderSprite then
  82.     puppetSprite dragUnderSprite, TRUE
  83.     set the member of sprite dragUnderSprite to member "underCursor"
  84.     set the loc of sprite dragUnderSprite to the loc of sprite dragTopSprite
  85.   end if
  86.   
  87.   moveDirection (me, spr, direction) -- do the actual motion.
  88.   
  89.   if dragTopSprite then set tmpLoc = the loc of sprite dragTopSprite
  90.   
  91.   -- this was to return the location of the drag under sprite, currently we return the sprite number itself.
  92.   --  if dragUnderSprite then set endLoc = the loc of sprite dragUnderSprite
  93.   --  else set endLoc = void
  94.   
  95.   if dragTopSprite then moveOffScreen (me, dragTopSprite)
  96.   
  97.   set the loc of sprite spr to tmpLoc  -- move original spr back onscreen.
  98.   updateStage
  99.   
  100.   if dragUnderSprite then return dragUnderSprite
  101.   else return void
  102. end
  103.  
  104.  
  105. -- drag the passed sprite
  106.  
  107. on moveDirection me, spr, direction
  108.   
  109.   set startCast = the name of castLib the castLibNum of sprite spr
  110.   set betweenCastOne = startCast && "betweens1"
  111.   set betweenCastTwo = startCast && "betweens2"
  112.   set moveNum = 1
  113.   
  114.   repeat while the mouseDown
  115.     case (direction) of 
  116.       #up :   set sprOffSet = point (0,-2)
  117.       #down:  set sprOffSet = point (0,2)
  118.       #right: set sprOffSet = point (2,0)
  119.       #left:  set sprOffSet = point (-2,0)
  120.       #upleft: set sprOffSet = point (-2,-2)
  121.       #downleft: set sprOffSet = point (-2,2)
  122.       #downright: set sprOffSet = point (2,2)
  123.       #upright: set sprOffSet = point (2,-2)
  124.       otherwise return
  125.     end case
  126.     
  127.     set the loc of sprite dragUnderSprite = the loc of sprite dragUnderSprite + sprOffSet
  128.     updateStage
  129.     
  130.     if  checkSpriteIntersect (me, dragUnderSprite) then
  131.       -- if we colide with a bad target, then don't allow the move
  132.       set the loc of sprite dragUnderSprite = the loc of sprite dragUnderSprite - sprOffSet
  133.       -- beep
  134.       exit repeat
  135.     else
  136.       -- otherwise move the main sprite to match the new location of the test sprite:
  137.       set the loc of sprite dragTopSprite = the loc of sprite dragTopSprite + sprOffSet
  138.       if the name of castLib the castLibNum of sprite dragTopSprite = startCast then 
  139.         set the castLibNum of sprite dragTopSprite to the number of castLib betweenCastOne
  140.       else
  141.         if the name of castLib the castLibNum of sprite dragTopSprite = betweenCastOne then
  142.           set the castLibNum of sprite dragTopSprite to the number of castLib betweenCastTwo
  143.         else
  144.           set the castLibNum of sprite dragTopSprite to the number of castLib startCast
  145.         end if
  146.         
  147.       end if
  148.     end if
  149.     
  150.     updateStage
  151.   end repeat
  152. end
  153.  
  154.  
  155. --finally ditch the dragUnderSprite:
  156.  
  157. on hideUnderSprite me
  158.   if not dragUnderSprite then return
  159.   moveOffScreen (me, dragUnderSprite)
  160. end
  161.  
  162.  
  163. -- check the ink of the sprites under the cursor:
  164.  
  165. on checkSpriteIntersect me, activeSpr
  166.   if not dragUnderSprite then return
  167.   if not listP (hiliteList) then return
  168.   updateStage
  169.   if (sprite activeSpr within sprite 3) then   
  170.     return 0
  171.   else
  172.     return 1
  173.   end if
  174.   
  175. end
  176.  
  177.  
  178.  
  179. on setUp me, hilites
  180.   set dragUnderSprite = 0
  181.   set dragTopSprite = 0
  182.   
  183.   repeat with i = 1 to numSprites (me)
  184.     if the scoreColor of sprite i = dragTopSpriteColor then 
  185.       set dragTopSprite = i
  186.       exit repeat
  187.     end if
  188.   end repeat
  189.   
  190.   repeat with i = 1 to numSprites (me)
  191.     if the scoreColor of sprite i = dragUnderSpriteColor then
  192.       if hiliteSprite then set dragUnderSprite = i
  193.       else set hiliteSprite = i
  194.     end if
  195.   end repeat
  196.   
  197.   -- makeField (me, dragTopField, dragTopSprite)
  198. end
  199.  
  200.  
  201. -- hilites must be a list of sprite numbers.
  202.  
  203. on initHilitePool me, hilites
  204.   if listP (hilites) then set hiliteList = hilites
  205. end